home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr53 / pctv4n_1.zip / QCOLINFO.H < prev    next >
Text File  |  1993-06-10  |  650b  |  27 lines

  1. /**************************************************
  2. * FILE NAME: qcolumn.h   TITLE:  column information
  3. *
  4. * AUTHOR: Ken North     Resource Group, Inc.    
  5. *                       2604B El Camino Real, #351
  6. * copyright(c)1992      Carlsbad, CA 92008
  7. **************************************************
  8. * SYNOPSIS:
  9. *      column information for QELib 
  10. ***************************************************/
  11.  
  12. #ifndef __QCOLINFO_H
  13. #define __QCOLINFO_H
  14.  
  15. typedef struct 
  16.    {
  17.     int     DataType;
  18.     int     Length;
  19.     int     Scale;        /* decimal places */
  20.     int     NameLen;
  21.     char    ColName [NAMELENGTH];
  22.    } COLUMNS;
  23.  
  24.  
  25. #endif
  26.  
  27.